* {
    font-family: "Inter", sans-serif;
    color: rgb(253, 238, 219);
}

html {

    scroll-behavior: smooth;
    background: #1B1D1D;
    width: 100vw;
}

body {
    display: block;

}

.star-container {
    position: relative;
    width: 100%;
    height: 100vh;
    
}

.stars {
    position: fixed;
    display: flex;
    z-index: -100;
}

.stars span {
    position: relative;
    width: 30px;
    height: 30px;
    background: rgb(230, 228, 228);
    margin: 0 4px;
    border-radius: 50%; 
    box-shadow: 0 0 0 10px rgba(230, 228, 228, 0.5), 
                0 0 0 20px rgba(230, 228, 228, 0.3), 
                0 0 0 30px rgba(230, 228, 228, 0.1);
    animation: animate 15s linear infinite;
    animation-duration: calc(120s / (var(--i)));
}

.stars span:nth-child(even) {
    animation-delay: 0s;
    background: rgb(185, 184, 184);
    box-shadow: 0 0 0 10px rgba(230, 228, 228, 0.5), 
            0 0 0 20px rgba(230, 228, 228, 0.3), 
            0 0 0 30px rgba(230, 228, 228, 0.1);
}

@keyframes animate {
    0% {
        transform: translateY(100vh) scale(0);
    }
    100% {
        transform: translateY(-10vh) scale(0.1);
    }
}

/* Project Area Design Styles */
.project-container {
    text-align: left;
}

.project-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: scroll;
    
}



/* Project Card Design Styles*/
.project h4, p {
    
    margin: 0 0 .5rem 2.5rem;
}

figure {
    margin-bottom: 0px;
}

.project p {
    padding-bottom: 3rem;
}

.project-thumbnail {
    width: 19.6875rem;
    height: 11.083rem;
    margin-top: 1rem;
}

.figcaption {
    position: relative;
    background-color: grey;
    bottom: 1.4rem;
    text-align: left;
    margin-bottom: 0px;
    padding-left: 5px;
}

.project-link {
    text-decoration: none;
    height: .5rem;
}
